home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Programming / Complete Applications / Othello C Source / newgame.c < prev    next >
Encoding:
C/C++ Source or Header  |  1985-06-16  |  536 b   |  27 lines  |  [TEXT/ttxt]

  1. /* newgame.c - NewGame */
  2.  
  3. #include "mac/quickdraw.h"
  4. #include "mac/osintf.h"
  5. #include "mac/toolintf.h"
  6. #include "othello.h"
  7.  
  8.  
  9.  
  10. NewGame()
  11. {
  12.     int    row, col;
  13.     
  14.     ClearMessages();
  15.     strcpy(message, "New game");
  16.     StopThinking = TRUE;
  17.     GameOver = FALSE;
  18.     curColor = stoneWhite;
  19.     for (row = 1; row <= BOARDSIZE; ++row)
  20.         for (col = 1; col <= BOARDSIZE; ++col)
  21.         PlaceStone(row, col, stoneEmpty);
  22.     nStones[stoneEmpty] = BOARDSIZE*BOARDSIZE;    /* Just to make sure*/
  23.     nStones[stoneWhite] = nStones[stoneBlack] = 0;
  24.     InitBoard();
  25.     UpdateInfo();
  26. }
  27.